home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / win_u_z / vlistsam.zip / LISTTEST.H < prev    next >
C/C++ Source or Header  |  1992-08-30  |  594b  |  30 lines

  1. #include <windows.h>
  2.  
  3. #include <windowsx.h>
  4. #include "vlist.h"
  5.  
  6. #ifndef RC_INVOKED
  7. #include <string.h>
  8. #include <stdio.h>
  9. #include <io.h>
  10. #include "stdlib.h"
  11. #endif
  12.  
  13. #define IDM_DIALOG                1000
  14.  
  15. #define IDS_ERR_REGISTER_CLASS   1
  16. #define IDS_ERR_CREATE_WINDOW    2
  17.  
  18. char szString[128];
  19.  
  20. char szAppName[20];
  21. HWND hInst;          
  22. HWND hWndMain;       
  23.  
  24. void cwCenter(HWND, int);
  25.  
  26. LONG FAR PASCAL WndProc(HWND, UINT, WPARAM, LPARAM);
  27. BOOL FAR PASCAL DIALOGSMsgProc(HWND, UINT, WPARAM, LPARAM);
  28. int nCwRegisterClasses(void);
  29. void CwUnRegisterClasses(void);
  30.